958674ad2f51560bd14d5a8428f41f032963744c,src/jwiki/dwrap/ImageInfo.java,ImageInfo,ImageInfo,#Reply#,57

Before Change


			if(params.has("thumburl"))
			{
				thumburl = params.getString("thumburl");
				thumbdimensions = new Tuple<>(new Integer(params.getIntR("thumbwidth")), new Integer(params.getIntR("thumbheight")));
			}
			else
			{

After Change


			if(params.has("thumburl"))
			{
				thumburl = params.getString("thumburl");
				thumbdimensions = new Tuple<>(params.getIntR("thumbwidth"), params.getIntR("thumbheight"));
			}
			else
			{